Conditions | 1 |
Paths | 1 |
Total Lines | 37 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import logger, { |
||
12 | describe('n-auto-logger exports', () => { |
||
13 | it('logger', () => { |
||
14 | expect(typeof logger).toBe('object'); |
||
15 | }); |
||
16 | |||
17 | it('loggerEvent', () => { |
||
18 | expect(typeof loggerEvent).toBe('function'); |
||
19 | }); |
||
20 | |||
21 | it('logAction', () => { |
||
22 | expect(typeof logAction).toBe('function'); |
||
23 | }); |
||
24 | |||
25 | it('logOperation', () => { |
||
26 | expect(typeof logOperation).toBe('function'); |
||
27 | }); |
||
28 | |||
29 | it('toMiddleware', () => { |
||
30 | expect(typeof toMiddleware).toBe('function'); |
||
31 | }); |
||
32 | |||
33 | it('addTransactionId', () => { |
||
34 | expect(typeof addTransactionId).toBe('function'); |
||
35 | }); |
||
36 | |||
37 | it('tagService', () => { |
||
38 | expect(typeof tagService).toBe('function'); |
||
39 | }); |
||
40 | |||
41 | it('enhancedRender', () => { |
||
42 | expect(typeof enhancedRender).toBe('function'); |
||
43 | }); |
||
44 | |||
45 | it('compose', () => { |
||
46 | expect(typeof compose).toBe('function'); |
||
47 | }); |
||
48 | }); |
||
49 |